@charset"UTF-8";
body {
	width: 100%;
}
/* 顶部页首 */
.pc-header {
	position: relative;
	width: 100%;
}

/* 顶部的Logo和导航 */
.pc-head-box {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-bottom: 1px solid #25709A;
	transition: all .3s linear;
	z-index: 200;
}

.pc-head-box .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

.pc-head-box ul {
	display: inline-block;
}

.pc-head-box ul li {
	float: right;
	margin-left: 70px;
}
.pc-head-box ul li a {
	font-size: 18px;
}

.pc-head-box .logo a {
	display: block;
	width: 153px;
	height: 33px;
}
.no-moveScroll .logo a {
	background: url('../images/logo.png');
	background-size: 100% 100%;
}
.moveScroll .logo a {
	background: url('../images/logomovescroll.png');
	background-size: 100% 100%;
}

.no-moveScroll ul li,
.no-moveScroll ul li a {
	color: #fff;
}
.moveScroll {
	background-color: #fff;
}
.moveScroll ul li,
.moveScroll ul li a {
	color: #666;
}

.pc-head-box ul li a:hover {
	color: #FF961F;
}

/* Banner背景图 */
.home-banner {
	position: relative;
	height: 620px;
	z-index: 99;
}
.home-banner-box {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
}
.home-banner .back-banner {
	display: block;
	width: 1920px;
	height: 100%;
	margin-left: -370px;
}

/* 主体 */
.container {
	width: 1200px;
	margin: 0 auto;
}

.click-button {
	display: block;
	background-color: #006bff;
	color: #fff;
	text-align: center;
	line-height: 54px;
	transition: all 0.3s linear;
	opacity: 0.85;
}
.click-button:hover {
	opacity: 1;
}

/* 底部样式 */
.pc-footer {
	background-color: #232330;
}

.pc-footer-box {
	display: flex;
	padding: 98px 0 58px;
	color: #ffffff;
}

.pc-footer-box .left {
	width: 280px;
	text-align: center;
}

.pc-footer-box .left h2 {
	line-height: 40px;
	font-size: 20px;
	font-size: 20px;
}

.pc-footer-box .left p {
	line-height: 40px;
	font-size: 16px;
	opacity: 0.5;
}
.pc-footer-box .mid {
	padding-top: 12px;
	font-size: 14px;
	opacity: 0.5;
}
.pc-footer-box .company-name {
	margin-bottom: 26px;
	line-height: 36px;
	font-size: 16px;
}
.pc-footer-box .company-info {
	display: flex;
}
.pc-footer-box .company-info ul {
	padding-right: 30px;
}
.pc-footer-box .company-info li {
	display: flex;
	/* padding: 3px 0; */
	min-height: 30px;
}
.pc-footer-box .company-info li span {
	display: block;
	width: 42px;
	line-height: 30px;
}
.pc-footer-box .company-info li em {
	display: block;
	flex: 1;
	line-height: 30px;
}
.pc-footer-box .right {
	width: 269px;
}
.pc-footer-box .right img {
	display: block;
	width: 100%;
	height: 168px;
}

.foot {
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	opacity: 0.5;
}
.foot p {
	line-height: 24px;
}
.foot .gongan img {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 5px;
	vertical-align: text-top;
}


/* 公共动画效果 */
.scale-big-hover {
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scale-big-hover:hover {
	transform: scale(1.03);
}